Practise from from 41 :
41 : Excercise : Password Checker username = input ( "Enter your Usernname: " ) password = input ( "Enter your Password: " ) passwdencrpy = '*' * 10 print ( f " { username } , your password: { passwdencrpy } length is { len ( password ) } long" ) Result sre, your password: ********** length is 9 long ============= Excercise : Password Checker Slightly Modified the code. username = input ( "Enter your Usernname: " ) password = input ( "Enter your Password: " ) cap_password = int ( len ( password )) passwdencrpy = '*' * cap_password print ( f " { username } , your password: { passwdencrpy } length is { cap_password } long characters long" ) Result Sreejith Balakrishnan, your password: ********** length is 10 long characters long 42: List List is an ordered sequence of object it can be of any type. List we denote with square brackets All the above are valid list values. In Python , li...